home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000309_news@columbia.edu_Wed Sep 6 09:00:09 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07279
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 6 Sep 1995 19:31:09 -0400
  3. Received: by apakabar.cc.columbia.edu id AA14427
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 6 Sep 1995 19:31:07 -0400
  5. Path: news.columbia.edu!news.cs.columbia.edu!news.boxhill.com!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: PC SERVER QUESTION
  9. Message-Id: <1995Sep6.150009.60685@cc.usu.edu>
  10. Date: 6 Sep 95 15:00:09 MDT
  11. References: <42kq7k$fb8@ccnet2.ccnet.com>
  12. Organization: Utah State University
  13. Lines: 39
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <42kq7k$fb8@ccnet2.ccnet.com>, gbernard@dbc.com (Greg Bernard) writes:
  17. > Hi all,
  18. > I need some help with the Kermit server setup.  I have the book
  19. > (excellent - good job guys) and have read the FAQ, but obviously not
  20. > all three synapses are not firing correctly ;-)!
  21. > Here is what I am trying to do.  At work, on this PC, I want to call
  22. > my PC at home and transfer files back and forth when the need arises.
  23. > Both PCs are running the latest version of CKermit, so the software is
  24. > OK.  My script at home is:
  25. > DEFINE GOSERVER -
  26. >     SET CARRIER ON,-
  27. >     SET PORT COM3:,-
  28. >     SET SPEED 57600,-
  29. >     SET FILE TYPE BINARY,-
  30. >     SET RECEIVE-PACKET 9024,-
  31. >     SET WINDOW 32,-
  32. >     SET SERVER LOGIN x x,-
  33. >     SET SERVER TIMEOUT 0
  34. > then at the Kermit prompt I type GOSERVER and then I am presented with
  35. > the server screen, all OK.
  36. > At work, I call my home PC and the number rings, and rings, and rings
  37. > until finally it times out.
  38. -----------
  39.     All is fine above, but I'll be you forgot to program your modem
  40. to answer the phone. That's normally ATS0=<number of rings, 0 for don't
  41. answer>. See your modem's instruction booklet. Try it from another phone.
  42.     You can save memory by reducing the number of sliding window
  43. slots to say 4. More won't be used on such a link. Save time by shortening
  44. packets to say 2KB so that a glitch will have fewer bytes to repeat. Little
  45. is gained abouve 1KB packet lengths (the packet header overhead is small
  46. to begin with).
  47.     The server will follow text/binary from MSK 3.14 client, so just
  48. use SET FILE TYPE Binary/Text on the client and the server will obey too.
  49.     Joe D.